home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / dev / lang / python_src.lha / amigapython / objects / floatobject.c.bak < prev    next >
Text File  |  1995-10-25  |  10KB  |  495 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Float object implementation */
  26.  
  27. /* XXX There should be overflow checks here, but it's hard to check
  28.    for any kind of float exception without losing portability. */
  29.  
  30. #include "allobjects.h"
  31. #include "modsupport.h"
  32.  
  33. #include <errno.h>
  34. #include <ctype.h>
  35. #include "mymath.h"
  36.  
  37. #ifdef i860
  38. /* Cray APP has bogus definition of HUGE_VAL in <math.h> */
  39. #undef HUGE_VAL
  40. #endif
  41.  
  42. #ifdef HUGE_VAL
  43. #define CHECK(x) if (errno != 0) ; \
  44.     else if (-HUGE_VAL <= (x) && (x) <= HUGE_VAL) ; \
  45.     else errno = ERANGE
  46. #else
  47. #define CHECK(x) /* Don't know how to check */
  48. #endif
  49.  
  50. #ifdef HAVE_LIMITS_H
  51. #include <limits.h>
  52. #endif
  53.  
  54. #ifndef LONG_MAX
  55. #define LONG_MAX 0X7FFFFFFFL
  56. #endif
  57.  
  58. #ifndef LONG_MIN
  59. #define LONG_MIN (-LONG_MAX-1)
  60. #endif
  61.  
  62. #ifdef __NeXT__
  63. #ifdef __sparc__
  64. /*
  65.  * This works around a bug in the NS/Sparc 3.3 pre-release
  66.  * limits.h header file.
  67.  * 10-Feb-1995 bwarsaw@cnri.reston.va.us
  68.  */
  69. #undef LONG_MIN
  70. #define LONG_MIN (-LONG_MAX-1)
  71. #endif
  72. #endif
  73.  
  74. #if !defined(__STDC__) && !defined(macintosh)
  75. extern double fmod PROTO((double, double));
  76. extern double pow PROTO((double, double));
  77. #endif
  78.  
  79. object *
  80. #ifdef __SC__
  81. newfloatobject(double fval)
  82. #else
  83. newfloatobject(fval)
  84.     double fval;
  85. #endif
  86. {
  87.     /* For efficiency, this code is copied from newobject() */
  88.     register floatobject *op = (floatobject *) malloc(sizeof(floatobject));
  89.     if (op == NULL)
  90.         return err_nomem();
  91.     op->ob_type = &Floattype;
  92.     op->ob_fval = fval;
  93.     NEWREF(op);
  94.     return (object *) op;
  95. }
  96.  
  97. static void
  98. float_dealloc(op)
  99.     object *op;
  100. {
  101.     DEL(op);
  102. }
  103.  
  104. double
  105. getfloatvalue(op)
  106.     object *op;
  107. {
  108.     number_methods *nb;
  109.     floatobject *fo;
  110.     double val;
  111.     
  112.     if (op && is_floatobject(op))
  113.         return GETFLOATVALUE((floatobject*) op);
  114.     
  115.     if (op == NULL || (nb = op->ob_type->tp_as_number) == NULL ||
  116.         nb->nb_float == NULL) {
  117.         err_badarg();
  118.         return -1;
  119.     }
  120.     
  121.     fo = (floatobject*) (*nb->nb_float) (op);
  122.     if (fo == NULL)
  123.         return -1;
  124.     if (!is_floatobject(fo)) {
  125.         err_setstr(TypeError, "nb_float should return float object");
  126.         return -1;
  127.     }
  128.     
  129.     val = GETFLOATVALUE(fo);
  130.     DECREF(fo);
  131.     
  132.     return val;
  133. }
  134.  
  135. /* Methods */
  136.  
  137. void
  138. float_buf_repr(buf, v)
  139.     char *buf;
  140.     floatobject *v;
  141. {
  142.     register char *cp;
  143.     /* Subroutine for float_repr and float_print.
  144.        We want float numbers to be recognizable as such,
  145.        i.e., they should contain a decimal point or an exponent.
  146.        However, %g may print the number as an integer;
  147.        in such cases, we append ".0" to the string. */
  148. #ifdef AMIGA
  149.     cp = gcvt(v->ob_fval, 12, buf);
  150. #else
  151.     sprintf(buf, "%.12g", v->ob_fval);
  152.     cp = buf;
  153. #endif
  154.     if (*cp == '-')
  155.         cp++;
  156.     for (; *cp != '\0'; cp++) {
  157.         /* Any non-digit means it's not an integer;
  158.            this takes care of NAN and INF as well. */
  159.         if (!isdigit(Py_CHARMASK(*cp)))
  160.             break;
  161.     }
  162.     if (*cp == '\0') {
  163.         *cp++ = '.';
  164.         *cp++ = '0';
  165.         *cp++ = '\0';
  166.     }
  167. }
  168.  
  169. /* ARGSUSED */
  170. static int
  171. float_print(v, fp, flags)
  172.     floatobject *v;
  173.     FILE *fp;
  174.     int flags; /* Not used but required by interface */
  175. {
  176.     char buf[100];
  177.     float_buf_repr(buf, v);
  178.     fputs(buf, fp);
  179.     return 0;
  180. }
  181.  
  182. static object *
  183. float_repr(v)
  184.     floatobject *v;
  185. {
  186.     char buf[100];
  187.     float_buf_repr(buf, v);
  188.     return newstringobject(buf);
  189. }
  190.  
  191. static int
  192. float_compare(v, w)
  193.     floatobject *v, *w;
  194. {
  195.     double i = v->ob_fval;
  196.     double j = w->ob_fval;
  197.     return (i < j) ? -1 : (i > j) ? 1 : 0;
  198. }
  199.  
  200. static long
  201. float_hash(v)
  202.     floatobject *v;
  203. {
  204.     double intpart, fractpart;
  205.     int expo;
  206.     long x;
  207.     /* This is designed so that Python numbers with the same
  208.        value hash to the same value, otherwise comparisons
  209.        of mapping keys will turn out weird */
  210.  
  211. #ifdef MPW /* MPW C modf expects pointer to extended as second argument */
  212. {
  213.     extended e;
  214.     fractpart = modf(v->ob_fval, &e);
  215.     intpart = e;
  216. }
  217. #else
  218.     fractpart = modf(v->ob_fval, &intpart);
  219. #endif
  220.  
  221.     if (fractpart == 0.0) {
  222.         if (intpart > 0x7fffffffL || -intpart > 0x7fffffffL) {
  223.             /* Convert to long int and use its hash... */
  224.             object *w = dnewlongobject(v->ob_fval);
  225.             if (w == NULL)
  226.                 return -1;
  227.             x = hashobject(w);
  228.             DECREF(w);
  229.             return x;
  230.         }
  231.         x = (long)intpart;
  232.     }
  233.     else {
  234.         fractpart = frexp(fractpart, &expo);
  235.         fractpart = fractpart*2147483648.0; /* 2**31 */
  236.         x = (long) (intpart + fractpart) ^ expo; /* Rather arbitrary */
  237.     }
  238.     if (x == -1)
  239.         x = -2;
  240.     return x;
  241. }
  242.  
  243. static object *
  244. float_add(v, w)
  245.     floatobject *v;
  246.     floatobject *w;
  247. {
  248.     return newfloatobject(v->ob_fval + w->ob_fval);
  249. }
  250.  
  251. static object *
  252. float_sub(v, w)
  253.     floatobject *v;
  254.     floatobject *w;
  255. {
  256.     return newfloatobject(v->ob_fval - w->ob_fval);
  257. }
  258.  
  259. static object *
  260. float_mul(v, w)
  261.     floatobject *v;
  262.     floatobject *w;
  263. {
  264.     return newfloatobject(v->ob_fval * w->ob_fval);
  265. }
  266.  
  267. static object *
  268. float_div(v, w)
  269.     floatobject *v;
  270.     floatobject *w;
  271. {
  272.     if (w->ob_fval == 0) {
  273.         err_setstr(ZeroDivisionError, "float division");
  274.         return NULL;
  275.     }
  276.     return newfloatobject(v->ob_fval / w->ob_fval);
  277. }
  278.  
  279. static object *
  280. float_rem(v, w)
  281.     floatobject *v;
  282.     floatobject *w;
  283. {
  284.     double vx, wx;
  285.     double /* div, */ mod;
  286.     wx = w->ob_fval;
  287.     if (wx == 0.0) {
  288.         err_setstr(ZeroDivisionError, "float modulo");
  289.         return NULL;
  290.     }
  291.     vx = v->ob_fval;
  292.     mod = fmod(vx, wx);
  293.     /* div = (vx - mod) / wx; */
  294.     if (wx*mod < 0) {
  295.         mod += wx;
  296.         /* div -= 1.0; */
  297.     }
  298.     return newfloatobject(mod);
  299. }
  300.  
  301. static object *
  302. float_divmod(v, w)
  303.     floatobject *v;
  304.     floatobject *w;
  305. {
  306.     double vx, wx;
  307.     double div, mod;
  308.     wx = w->ob_fval;
  309.     if (wx == 0.0) {
  310.         err_setstr(ZeroDivisionError, "float divmod()");
  311.         return NULL;
  312.     }
  313.     vx = v->ob_fval;
  314.     mod = fmod(vx, wx);
  315.     div = (vx - mod) / wx;
  316.     if (wx*mod < 0) {
  317.         mod += wx;
  318.         div -= 1.0;
  319.     }
  320.     return mkvalue("(dd)", div, mod);
  321. }
  322.  
  323. static object *
  324. float_pow(v, w, z)
  325.     floatobject *v;
  326.     floatobject *w;
  327.     floatobject *z;
  328. {
  329.     double iv, iw, ix;
  330.     iv = v->ob_fval;
  331.     iw = w->ob_fval;
  332.  /* XXX Doesn't handle overflows if z!=None yet; it may never do so :(
  333.   * The z parameter is really only going to be useful for integers and
  334.   * long integers.  Maybe something clever with logarithms could be done.
  335.   * [AMK]
  336.   */
  337.     /* Sort out special cases here instead of relying on pow() */
  338.     if (iw == 0.0) {         /* x**0 is 1, even 0**0 */
  339.          if ((object *)z!=None) {
  340.              ix=fmod(1.0, z->ob_fval);
  341.              if (ix!=0 && z->ob_fval<0) ix+=z->ob_fval;
  342.         }
  343.          else ix=1.0;
  344.             return newfloatobject(ix); 
  345.     }
  346.     if (iv == 0.0) {
  347.         if (iw < 0.0) {
  348.             err_setstr(ValueError, "0.0 to a negative power");
  349.             return NULL;
  350.         }
  351.         return newfloatobject(0.0);
  352.     }
  353.     errno = 0;
  354.     ix = pow(iv, iw);
  355.     CHECK(ix);
  356.     if (errno != 0) {
  357.         /* XXX could it be another type of error? */
  358.         err_errno(OverflowError);
  359.         return NULL;
  360.     }
  361.      if ((object *)z!=None) {
  362.          ix=fmod(ix, z->ob_fval);    /* XXX To Be Rewritten */
  363.          if ( ix!=0 &&
  364.               ((iv<0 && z->ob_fval>0) || (iv>0 && z->ob_fval<0) )) {
  365.              ix+=z->ob_fval;
  366.             }
  367.     }
  368.     return newfloatobject(ix);
  369. }
  370.  
  371. static object *
  372. float_neg(v)
  373.     floatobject *v;
  374. {
  375.     return newfloatobject(-v->ob_fval);
  376. }
  377.  
  378. static object *
  379. float_pos(v)
  380.     floatobject *v;
  381. {
  382.     INCREF(v);
  383.     return (object *)v;
  384. }
  385.  
  386. static object *
  387. float_abs(v)
  388.     floatobject *v;
  389. {
  390.     if (v->ob_fval < 0)
  391.         return float_neg(v);
  392.     else
  393.         return float_pos(v);
  394. }
  395.  
  396. static int
  397. float_nonzero(v)
  398.     floatobject *v;
  399. {
  400.     return v->ob_fval != 0.0;
  401. }
  402.  
  403. static int
  404. float_coerce(pv, pw)
  405.     object **pv;
  406.     object **pw;
  407. {
  408.     if (is_intobject(*pw)) {
  409.         long x = getintvalue(*pw);
  410.         *pw = newfloatobject((double)x);
  411.         INCREF(*pv);
  412.         return 0;
  413.     }
  414.     else if (is_longobject(*pw)) {
  415.         *pw = newfloatobject(dgetlongvalue(*pw));
  416.         INCREF(*pv);
  417.         return 0;
  418.     }
  419.     return 1; /* Can't do it */
  420. }
  421.  
  422. static object *
  423. float_int(v)
  424.     object *v;
  425. {
  426.     double x = getfloatvalue(v);
  427.     if (x < 0 ? (x = ceil(x)) < (double)LONG_MIN
  428.               : (x = floor(x)) > (double)LONG_MAX) {
  429.         err_setstr(OverflowError, "float too large to convert");
  430.         return NULL;
  431.     }
  432.     return newintobject((long)x);
  433. }
  434.  
  435. static object *
  436. float_long(v)
  437.     object *v;
  438. {
  439.     double x = getfloatvalue(v);
  440.     return dnewlongobject(x);
  441. }
  442.  
  443. static object *
  444. float_float(v)
  445.     object *v;
  446. {
  447.     INCREF(v);
  448.     return v;
  449. }
  450.  
  451.  
  452. static number_methods float_as_number = {
  453.     (binaryfunc)float_add, /*nb_add*/
  454.     (binaryfunc)float_sub, /*nb_subtract*/
  455.     (binaryfunc)float_mul, /*nb_multiply*/
  456.     (binaryfunc)float_div, /*nb_divide*/
  457.     (binaryfunc)float_rem, /*nb_remainder*/
  458.     (binaryfunc)float_divmod, /*nb_divmod*/
  459.     (ternaryfunc)float_pow, /*nb_power*/
  460.     (unaryfunc)float_neg, /*nb_negative*/
  461.     (unaryfunc)float_pos, /*nb_positive*/
  462.     (unaryfunc)float_abs, /*nb_absolute*/
  463.     (inquiry)float_nonzero, /*nb_nonzero*/
  464.     0,        /*nb_invert*/
  465.     0,        /*nb_lshift*/
  466.     0,        /*nb_rshift*/
  467.     0,        /*nb_and*/
  468.     0,        /*nb_xor*/
  469.     0,        /*nb_or*/
  470.     (coercion)float_coerce, /*nb_coerce*/
  471.     (unaryfunc)float_int, /*nb_int*/
  472.     (unaryfunc)float_long, /*nb_long*/
  473.     (unaryfunc)float_float, /*nb_float*/
  474.     0,        /*nb_oct*/
  475.     0,        /*nb_hex*/
  476. };
  477.  
  478. typeobject Floattype = {
  479.     OB_HEAD_INIT(&Typetype)
  480.     0,
  481.     "float",
  482.     sizeof(floatobject),
  483.     0,
  484.     (destructor)float_dealloc, /*tp_dealloc*/
  485.     (printfunc)float_print, /*tp_print*/
  486.     0,            /*tp_getattr*/
  487.     0,            /*tp_setattr*/
  488.     (cmpfunc)float_compare, /*tp_compare*/
  489.     (reprfunc)float_repr, /*tp_repr*/
  490.     &float_as_number,    /*tp_as_number*/
  491.     0,            /*tp_as_sequence*/
  492.     0,            /*tp_as_mapping*/
  493.     (hashfunc)float_hash, /*tp_hash*/
  494. };
  495.